home *** CD-ROM | disk | FTP | other *** search
/ Delphi 5 for Professionals / DELPHI5.iso / AddOns / Delphi 5 Companion Tools CD / FreeWare / HVDLL / HVDLL.ZIP / TestImpUnit.dfm / TestImpUnit.txt
Encoding:
Text File  |  1999-01-27  |  2.7 KB  |  139 lines

  1. object DllImportTestForm: TDllImportTestForm
  2.   Left = 216
  3.   Top = 108
  4.   Width = 392
  5.   Height = 375
  6.   Caption = 'Testing of DLL import methods'
  7.   Color = clBtnFace
  8.   Font.Charset = DEFAULT_CHARSET
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   OldCreateOrder = True
  14.   OnCreate = FormCreate
  15.   OnDestroy = FormDestroy
  16.   PixelsPerInch = 96
  17.   TextHeight = 13
  18.   object rgImportMethod: TRadioGroup
  19.     Left = 8
  20.     Top = 8
  21.     Width = 113
  22.     Height = 145
  23.     Caption = '&DLL Import Method'
  24.     ItemIndex = 0
  25.     Items.Strings = (
  26.       '&Implicit'
  27.       '&Explicit'
  28.       '&HVDll')
  29.     TabOrder = 0
  30.   end
  31.   object gbCallProcs: TGroupBox
  32.     Left = 136
  33.     Top = 8
  34.     Width = 113
  35.     Height = 145
  36.     Caption = 'Call DLL Routines'
  37.     TabOrder = 1
  38.     object btnRoutine1: TButton
  39.       Left = 14
  40.       Top = 21
  41.       Width = 75
  42.       Height = 25
  43.       Caption = 'Routine&1'
  44.       TabOrder = 0
  45.       OnClick = btnRoutine1Click
  46.     end
  47.     object btnRoutine2: TButton
  48.       Left = 14
  49.       Top = 51
  50.       Width = 75
  51.       Height = 25
  52.       Caption = 'Routine&2'
  53.       TabOrder = 1
  54.       OnClick = btnRoutine2Click
  55.     end
  56.     object btnRoutine3: TButton
  57.       Left = 14
  58.       Top = 81
  59.       Width = 75
  60.       Height = 25
  61.       Caption = 'Routine&3'
  62.       TabOrder = 2
  63.       OnClick = btnRoutine3Click
  64.     end
  65.     object btnRoutine4: TButton
  66.       Left = 14
  67.       Top = 111
  68.       Width = 75
  69.       Height = 25
  70.       Caption = 'Routine&4'
  71.       TabOrder = 3
  72.       OnClick = btnRoutine4Click
  73.     end
  74.   end
  75.   object gbLogging: TGroupBox
  76.     Left = 8
  77.     Top = 160
  78.     Width = 369
  79.     Height = 185
  80.     Caption = 'HVDll Logging'
  81.     TabOrder = 2
  82.     object LoggingMemo: TMemo
  83.       Left = 2
  84.       Top = 15
  85.       Width = 365
  86.       Height = 168
  87.       Align = alClient
  88.       ReadOnly = True
  89.       ScrollBars = ssVertical
  90.       TabOrder = 0
  91.     end
  92.   end
  93.   object gbHVDll: TGroupBox
  94.     Left = 256
  95.     Top = 8
  96.     Width = 121
  97.     Height = 145
  98.     Caption = 'HVDll Extras'
  99.     TabOrder = 3
  100.     object btnLoadDll: TButton
  101.       Left = 14
  102.       Top = 21
  103.       Width = 75
  104.       Height = 25
  105.       Caption = '&Load'
  106.       TabOrder = 0
  107.       OnClick = btnLoadDllClick
  108.     end
  109.     object btnUnloadDll: TButton
  110.       Left = 14
  111.       Top = 51
  112.       Width = 75
  113.       Height = 25
  114.       Caption = '&Unload'
  115.       TabOrder = 1
  116.       OnClick = btnUnloadDllClick
  117.     end
  118.     object btnHook: TButton
  119.       Left = 14
  120.       Top = 81
  121.       Width = 75
  122.       Height = 25
  123.       Caption = 'H&ook 1'
  124.       TabOrder = 2
  125.       OnClick = btnHookClick
  126.     end
  127.     object btnUnhook: TButton
  128.       Left = 14
  129.       Top = 111
  130.       Width = 75
  131.       Height = 25
  132.       Caption = 'Unhoo&k 1'
  133.       Enabled = False
  134.       TabOrder = 3
  135.       OnClick = btnUnhookClick
  136.     end
  137.   end
  138. end
  139.